home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / othergnu / bc102s.zoo / diffs < prev    next >
Text File  |  1992-06-20  |  910b  |  34 lines

  1. *** orig/scan.l    Sat Jun 20 18:35:56 1992
  2. --- scan.l    Sat Jun 20 18:38:34 1992
  3. ***************
  4. *** 28,34 ****
  5. --- 28,38 ----
  6.   *************************************************************************/
  7.   
  8.   #include "bcdefs.h"
  9. + #ifdef atarist
  10. + #include "y_tab.h"
  11. + #else
  12.   #include "y.tab.h"
  13. + #endif
  14.   #include "global.h"
  15.   #include "proto.h"
  16.   
  17. ***************
  18. *** 104,110 ****
  19.   \+\+|-- { yylval.c_value = yytext[0]; return(INCR_DECR); }
  20.   "\n" { line_no++; return(NEWLINE); }
  21.   \\\n {  line_no++;  /* ignore a "quoted" newline */ }
  22. ! [ \t]+  { /* ignore spaces and tabs */ }
  23.   "/*"  {
  24.       int c;
  25.   
  26. --- 108,114 ----
  27.   \+\+|-- { yylval.c_value = yytext[0]; return(INCR_DECR); }
  28.   "\n" { line_no++; return(NEWLINE); }
  29.   \\\n {  line_no++;  /* ignore a "quoted" newline */ }
  30. ! [ \t\r]+  { /* ignore spaces and tabs and carriage returns. was: [ \t]+ */ }
  31.   "/*"  {
  32.       int c;
  33.   
  34.